home *** CD-ROM | disk | FTP | other *** search
/ Developer CD Series 1996 February: Tool Chest / Apple Developer CD Series Tool Chest February 1996 (Apple Computer)(1996).iso / Sample Code / AOCE Sample Code / PowerTalk Access Modules / Sample SMSAM / SampleSMSAM Source / BuildingBlocks / Message.r < prev    next >
Encoding:
Text File  |  1995-07-28  |  840 b   |  41 lines  |  [TEXT/R*ch]

  1. /*
  2.     File:        Message.r
  3.  
  4.     Copyright:    © 1991-1994 by Apple Computer, Inc.
  5.                 All rights reserved.
  6.  
  7.     Part of the AOCE Sample SMSAM Package.  Consult the license
  8.     which came with this software for your specific legal rights.
  9.  
  10. */
  11.  
  12.  
  13.  
  14. #ifndef __MESSAGE__
  15. #define __MESSAGE__ 1
  16.  
  17. #ifndef __TYPES__
  18. #include "Types.r"
  19. #endif
  20.  
  21. /***********************************|****************************************
  22.  *
  23.  *    Resource: 'TMSG' ( Text-Message )
  24.  *
  25.  *    A text-message resource contains one or more messages in a single
  26.  *    script.  Each message has a message number which identifies the
  27.  *    individual message, and the message itself.
  28.  *
  29.  ***********************************|****************************************/
  30.  
  31. type 'TMSG'
  32. {
  33.         integer = $$CountOf ( Messages );
  34.     array Messages {
  35.         integer;            //    Message number
  36.         wstring;            //    Message
  37.     };
  38. };
  39.  
  40. #endif
  41.